home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming All in One / 3D Game Programming All in One Disc.iso / 3D2E / RESOURCES / CH20 / creator / debugger / DebuggerConnectDlg.gui < prev    next >
Text File  |  2005-11-23  |  4KB  |  149 lines

  1. //--- OBJECT WRITE BEGIN ---
  2. new GuiControl(DebuggerConnectDlg) {
  3.     profile = "GuiDialogProfile";
  4.     horizSizing = "right";
  5.     vertSizing = "bottom";
  6.     position = "0 0";
  7.     extent = "640 480";
  8.     minExtent = "8 8";
  9.     visible = "True";
  10.     setFirstResponder = "False";
  11.     modal = "True";
  12.     helpTag = "0";
  13.  
  14.     new GuiWindowCtrl() {
  15.         profile = "GuiWindowProfile";
  16.         horizSizing = "right";
  17.         vertSizing = "bottom";
  18.         position = "220 146";
  19.         extent = "200 188";
  20.         minExtent = "8 8";
  21.         visible = "True";
  22.         setFirstResponder = "False";
  23.         modal = "True";
  24.         helpTag = "0";
  25.         text = "Connect to server:";
  26.         resizeWidth = "True";
  27.         resizeHeight = "True";
  28.         canMove = "False";
  29.         canClose = "False";
  30.         canMinimize = "False";
  31.         canMaximize = "False";
  32.         minSize = "50 50";
  33.  
  34.         new GuiTextCtrl() {
  35.             profile = "GuiTextProfile";
  36.             horizSizing = "right";
  37.             vertSizing = "bottom";
  38.             position = "20 28";
  39.             extent = "55 18";
  40.             minExtent = "8 8";
  41.             visible = "True";
  42.             setFirstResponder = "False";
  43.             modal = "True";
  44.             helpTag = "0";
  45.             text = "IP Address:";
  46.         };
  47.         new GuiTextEditCtrl(DebuggerConnectAddress) {
  48.             profile = "GuiTextEditProfile";
  49.             horizSizing = "right";
  50.             vertSizing = "bottom";
  51.             position = "20 44";
  52.             extent = "160 18";
  53.             minExtent = "8 8";
  54.             visible = "True";
  55.             setFirstResponder = "False";
  56.             modal = "True";
  57.             variable = "$pref::DBGConnectAddress";
  58.             helpTag = "0";
  59.             historySize = "0";
  60.                 returnTab = "true";
  61.         };
  62.         new GuiTextCtrl() {
  63.             profile = "GuiTextProfile";
  64.             horizSizing = "right";
  65.             vertSizing = "bottom";
  66.             position = "20 68";
  67.             extent = "21 18";
  68.             minExtent = "8 8";
  69.             visible = "True";
  70.             setFirstResponder = "False";
  71.             modal = "True";
  72.             helpTag = "0";
  73.             text = "Port:";
  74.         };
  75.         new GuiTextEditCtrl(DebuggerConnectPort) {
  76.             profile = "GuiTextEditProfile";
  77.             horizSizing = "right";
  78.             vertSizing = "bottom";
  79.             position = "20 84";
  80.             extent = "160 18";
  81.             minExtent = "8 8";
  82.             visible = "True";
  83.             setFirstResponder = "False";
  84.             modal = "True";
  85.             variable = "$pref::DBGConnectPort";
  86.             helpTag = "0";
  87.             historySize = "0";
  88.                 returnTab = "true";
  89.         };
  90.         new GuiTextCtrl() {
  91.             profile = "GuiTextProfile";
  92.             horizSizing = "right";
  93.             vertSizing = "bottom";
  94.             position = "20 108";
  95.             extent = "52 18";
  96.             minExtent = "8 8";
  97.             visible = "True";
  98.             setFirstResponder = "False";
  99.             modal = "True";
  100.             helpTag = "0";
  101.             text = "Password:";
  102.         };
  103.         new GuiTextEditCtrl(DebuggerConnectPassword) {
  104.             profile = "GuiTextEditProfile";
  105.             horizSizing = "right";
  106.             vertSizing = "bottom";
  107.             position = "20 124";
  108.             extent = "160 18";
  109.             minExtent = "8 8";
  110.             visible = "True";
  111.             setFirstResponder = "False";
  112.             modal = "True";
  113.             variable = "$pref::DBGConnectPassword";
  114.             helpTag = "0";
  115.             historySize = "0";
  116.                 returnTab = "true";
  117.         };
  118.         new GuiButtonCtrl() {
  119.             profile = "GuiButtonProfile";
  120.             horizSizing = "right";
  121.             vertSizing = "bottom";
  122.             position = "56 156";
  123.             extent = "40 16";
  124.             minExtent = "8 8";
  125.             visible = "True";
  126.             setFirstResponder = "False";
  127.             modal = "True";
  128.             command = "DbgConnect();";
  129.             helpTag = "0";
  130.             text = "Open";
  131.         };
  132.         new GuiButtonCtrl() {
  133.             profile = "GuiButtonProfile";
  134.             horizSizing = "right";
  135.             vertSizing = "bottom";
  136.             position = "104 156";
  137.             extent = "40 16";
  138.             minExtent = "8 8";
  139.             visible = "True";
  140.             setFirstResponder = "False";
  141.             modal = "True";
  142.             command = "Canvas.popDialog(DebuggerConnectDlg);";
  143.             helpTag = "0";
  144.             text = "Cancel";
  145.         };
  146.     };
  147. };
  148. //--- OBJECT WRITE END ---
  149.